home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / wlabel.zip / WLABDEF.H < prev    next >
Text File  |  1986-07-12  |  755b  |  24 lines

  1. /****************  Definitions for WLABEL.C  ********************************/
  2.  
  3. #undef      toupper
  4. #undef      tolower
  5.  
  6. /******************* Macros ***********************************************/
  7.  
  8. #define     max(x,y)    ((x) > (y)) ? (x) : (y)
  9. #define     min(x,y)    ((x) < (y)) ? (x) : (y)
  10. #define     ctr(x,y)    ((y) - (x)) / 2
  11.  
  12. /********************  Misc Definitions **********************************/
  13.  
  14. #define      TRUE           -1
  15. #define        FALSE           0
  16. #define        ERROR           0
  17. #define        ESCAPE        27          /*ascii escape code*/
  18. #define     ESC         27
  19. #define     CR          13
  20. #define     REVERSE     0x70     /* reverse video attribute */
  21.  
  22. /************************************ END OF DEFINITIONS *******************/
  23.  
  24.